home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / pctjoc85.arc / AUTHORS.RPT next >
Text File  |  1985-07-25  |  875b  |  34 lines

  1. report from Authors Write Articles PartOf Issues \
  2.   where State=AZ or State=SD \
  3.   sorted by LastName FirstName Volume Number
  4.  
  5. report heading \ 
  6.   'Articles by Author'        : line 7 center: 
  7.  
  8. page heading break heading level 1 \ 
  9.   'Pmt  Vol Num                  Title' 
  10.  
  11. break 1 write.authornr \ 
  12.   heading \ 
  13.   $concat($chop(firstname), ' ', $chop(lastname)) \ 
  14.   : newline 2 \
  15.   mask 'Articles by: ????????????????????????????????':
  16.  
  17. break 2 year \ 
  18.   heading \ 
  19.   ''        : newline 2: \ 
  20.   footing \ 
  21.   year     \
  22.   : newline 2 mask '    Total compensation in year ????': \ 
  23.   $money($total(payment+bonus)) \
  24.   : column 38 mask '$$$,$$$.99': 
  25.  
  26. detail line \ 
  27.   column heading off \ 
  28.   (payment + bonus)        : mask 'ZZZZ':\ 
  29.   issues.volume            : column 6 mask 'ZZ':\ 
  30.   issues.number            : column 9 mask 'ZZ':\ 
  31.   title                    : column 12: 
  32.  
  33. endreport
  34.